home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Die Speccy' 97
/
Die Speccy' 97.iso
/
amiga_system
/
the_aminet
/
util
/
rexx
/
tritonrexx376.lha
/
TritonRexx
/
Install
< prev
next >
Wrap
Text File
|
1995-09-17
|
2KB
|
71 lines
; Installer-Skript fⁿr TritonRexx
; $VER: Install_TritonRexx 1.0 (17.9.95)
(copylib
(prompt "\nKopieren der 'tritonrexx.library' nach LIBS:\n")
(help @copylib-help)
(source "libs/tritonrexx.library")
(dest "LIBS:")
(confirm)
)
(copyfiles
(prompt "\nKopieren des Programms 'FlushTRX' nach C:\n")
(help @copyfiles-help)
(source "FlushTRX")
(dest "C:")
(pattern "FlushTRX")
(files)
(confirm)
)
(set dir
(askdir
(prompt "\nWo soll das TritonRexx-Verzeichnis angelegt werden?\n")
(help @askdir-help)
(default @default-dest)
)
)
(set progdir (tackon dir "TritonRexx"))
(makedir progdir)
(copyfiles
(help @copyfiles-help)
(source "/")
(dest dir)
(pattern "TritonRexx.info")
(files)
)
(copyfiles
(prompt "\nKopieren der Dateien.\n")
(help @copyfiles-help)
(source "")
(dest progdir)
(pattern "(TritonRexx.(guide|dok)|ARexxControl|Programme|Rexx)")
(infos)
(confirm)
)
(copyfiles
(prompt "\nDas Programm 'HandleCX' wird von 'Exchange.rexx'\n ben÷tigt, 'HandleCX' wird jetzt nach C: kopiert.\n")
(help @copyfiles-help)
(source "HandleCX")
(dest "C:")
(pattern "HandleCX")
(files)
(confirm)
)
(copylib
(prompt "\nEinige Skripts ben÷tigen die 'rexxtricks.library',\ndie Library wird jetzt nach LIBS: kopiert.\n")
(help @copylib-help)
(source "libs/rexxtricks.library")
(dest "LIBS:")
(confirm)
)
(exit "\nStarten Sie jetzt bitte 'Triton/Install' um die 'triton.library' zu installieren!\n")